home *** CD-ROM | disk | FTP | other *** search
/ Dos/V Magazine 1995 October 15 / CD [VMAG951015].bin / _demo / gambo / toilet1.dxr / 00019.ls < prev    next >
Encoding:
Text File  |  1995-02-13  |  767 b   |  31 lines

  1. on exitFrame
  2.   if rollOver(4) or rollOver(5) then
  3.     cursor([800, 801])
  4.     set the mouseDownScript to EMPTY
  5.   else
  6.     if rollOver(12) then
  7.       cursor([808, 809])
  8.       set the mouseDownScript to EMPTY
  9.     else
  10.       if (mouseV() > 360) and rollOver(1) then
  11.         cursor([814, 815])
  12.         set the mouseDownScript to "go to frame 45"
  13.       else
  14.         if (mouseH() < 150) and rollOver(1) then
  15.           cursor([814, 815])
  16.           set the mouseDownScript to "go to frame 45"
  17.         else
  18.           if rollOver(1) then
  19.             cursor([800, 801])
  20.             set the mouseDownScript to EMPTY
  21.           else
  22.             cursor(-1)
  23.             set the mouseDownScript to EMPTY
  24.           end if
  25.         end if
  26.       end if
  27.     end if
  28.   end if
  29.   go("2nd")
  30. end
  31.